.google-loader-container {
  display: flex;
  justify-content: center;
  margin-top: 65px;
}

.ball {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  margin-left: 5px;
  animation: bounce 2s linear infinite;
}

.ball:nth-child(1) {
  background: #4285f4;
  animation-delay: 0s;
  margin-left: 0;
}

.ball:nth-child(2) {
  background: #ea4335;
  animation-delay: 0.25s;
}

.ball:nth-child(3) {
  background: #fbbc05;
  animation-delay: 0.5s;
}

.ball:nth-child(4) {
  animation-delay: 0.75s;
  background: #34a853;
}

@keyframes bounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.spinning-loader {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.card-info {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content 120px max-content;
  justify-content: center;
  align-items: center;
  grid-gap: 12px;
  max-width: 185px;
  margin: auto;
  margin-bottom: 25px;
  line-height: 24px;
}

.card-info span {
  font-size: 12px;
  font-weight: 400;
  color: #000;
}

.select-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 240px;
  margin: 0px auto 16px auto;
}

.select-wrapper select {
  display: flex;
  padding: 12px 16px;
  height: 45px;
  width: 100%;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  outline: none;
}

.select-wrapper label {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #545454;
  margin-bottom: 4px;
}

.finish-order-button {
  min-width: 240px;
  background-color: #000;
  border-radius: 4px;
  padding: 8px 16px;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  justify-content: center;
  height: 35px;
}

.edit-card-icon {
  height: 16px;
  width: 16px;
  cursor: pointer;
}

.card-icon {
  display: flex;
  align-items: center;
  height: 16px;
  width: 24px;
}

.max-installment-info {
  color: #545454;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  min-width: 210px;
  margin: 12px auto 0px auto;
}

@keyframes pulse {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.skeletonTheme {
  display: block;
  position: relative;
  background: #f4f4f4;
  overflow: hidden;
  border-radius: 2px;
}

.skeletonTheme::after {
  animation: pulse 1.6s linear 0.5s infinite;
  background: linear-gradient(90deg, transparent, #e6e6e6, transparent);
  content: '';
  position: absolute;
  transform: translateX(-100%);
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

@font-face {
  font-family: 'VTEX Trust';
  src: local('VTEX Trust'),
    url(e521721a703f2525b01daaa391907ac6.otf) format('opentype');
}

#google-pay-container {
  background-color: white;
  padding: 10px 40px 40px;
  text-align: center;
  min-height: 245px;
  font-family: 'VTEX Trust', serif, monospace;
}

.google-pay-logo {
  height: 85px;
  margin-bottom: 15px;
}

.google-pay-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  color: #000;
  width: 240px;
  margin: auto;
  margin-bottom: 35px;
}

.google-pay-error {
  margin-top: 10px;
  width: 185px;
}

.google-pay-error > span {
  color: #d3180c;
}

.google-pay-UNAVAILABLE {
  width: 225px;
}

